/* Navbar background and links hover effect */
.custom-navbar {
  background: linear-gradient(45deg, #1f4037, #99f2c8);
  padding: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  border-radius: 5px;
  position: sticky; /* Makes the navbar sticky */
  top: 0; /* Sticks the navbar to the top */
  z-index: 1000; /* Ensures the navbar stays on top of other content */
}

/* Nav link styling */
.custom-navbar .nav-link {
  color: white;
  font-weight: bold;
  padding: 10px 15px;
  transition: all 0.3s ease;
}

/* Hover effect for nav links */
.custom-navbar .nav-link:hover {
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 5px;
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
  color: #f2f2f2;
  transform: scale(1.05);
}

/* Active link effect */
.custom-navbar .nav-link.active {
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 5px;
}

/* Search button styling */
.custom-btn {
  color: white;
  border-color: #28a745;
  transition: all 0.3s ease;
}

/* Search button hover effect */
.custom-btn:hover {
  background-color: #28a745;
  box-shadow: 0 0 10px rgba(40, 167, 69, 0.7);
  color: white;
}

/* Search input styling */
.form-control {
  border-radius: 20px;
  border: 2px solid #28a745;
  box-shadow: inset 0 0 10px rgba(40, 167, 69, 0.3);
}

.form-control:focus {
  outline: none;
  box-shadow: 0 0 10px rgba(40, 167, 69, 0.7);
}

/* Navbar Brand Logo */
.navbar-brand img {
  border-radius: 50%;
  transition: transform 0.3s ease;
}

/* Logo hover effect */
.navbar-brand img:hover {
  transform: rotate(360deg);
}

/* Navbar background shine effect */
.custom-navbar::after {
  content: '';
  position: absolute;
  top: 0;
  left: -50%;
  width: 100%;
  height: 100%;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.2), transparent);
  transition: all 0.5s;
  opacity: 0;
}

.custom-navbar:hover::after {
  left: 150%;
  opacity: 1;
}
/* navbar end */


 /* carousel start */
/* General Carousel Styling */
.carousel-inner img {
  width: 100%;
  height: 80vh;
  object-fit: contain; /* Changed to 'contain' to avoid cutting images */
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  background-color: #09aa74;
}

.carousel {
  margin-top: 20px;
}

.carousel-indicators [data-bs-target] {
  background-color: #7c4dff;
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.carousel-indicators .active {
  background-color: #ffd700;
  width: 12px;
  height: 12px;
}

/* Controls Styling */
.carousel-control-prev, 
.carousel-control-next {
  filter: brightness(0) invert(1);
  opacity: 0.7;
}

.carousel-control-prev:hover, 
.carousel-control-next:hover {
  opacity: 1;
}

.carousel-control-prev-icon, 
.carousel-control-next-icon {
  background-color: rgba(0, 0, 0, 0.4);
  padding: 10px;
  border-radius: 50%;
}

/* Media Queries for Mobile */
@media only screen and (max-width: 768px) {
  .carousel-inner img {
      height: 60vh; /* Slightly reduce height on tablets */
  }
}

@media only screen and (max-width: 480px) {
  .carousel-inner img {
      height: 50vh; /* Further reduce height on mobile phones */
  }
}
/* carsoule end */



/* Global Styles */
body {
  background-color: #f8f9fa;
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

h2 {
  color: #007bff;
  font-weight: bold;
  margin-bottom: 30px;
}

/* Card Styles */
.card {
  border: none; /* Remove default card border */
}

.project-card, .popular-card {
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s, box-shadow 0.3s;
}

.project-card img, .popular-card img, .card-img-top {
  width: 100%;
  height: 250px; /* Adjust height for consistency */
  object-fit: cover;
  transition: transform 0.3s; /* Smooth transition on hover */
}

.project-card:hover, .popular-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.project-title {
  color: #007bff;
  font-size: 1.5rem;
  margin-bottom: 10px;
  font-size: large;

}

.project-description {
  color: #091402;
  margin-bottom: 15px;
  font-size: large;
}

/* Explore Property Location Section */
.property-card {
  background-color: #ffffff;
  border-radius: 15px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  padding: 20px;
  margin-bottom: 30px;
}

.icon-box {
  font-size: 40px;
  color: #007bff;
}

.location {
  font-size: 1.2rem;
  color: #333;
}

/* Overview Section */
.overview-container {
  background-color: #f9f9f9;
  border-radius: 15px;
  padding: 30px;
  margin-bottom: 30px;
}

.overview-header {
  color: #007bff;
  margin-bottom: 20px;
}

.overview-item {
  margin-bottom: 15px;
}

.overview-label {
  font-weight: bold;
  color: #333;
}

.overview-value {
  color: #555;
}

/* Contact Section */
.contact-section {
  background-color: #ffffff;
  padding: 50px 0;
  border-radius: 15px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.contact-info {
  margin-bottom: 30px;
}

.icon {
  font-size: 40px;
  color: #007bff;
}

/* Button Styles */
.btn {
  border-radius: 25px;
  transition: background-color 0.3s, transform 0.3s;
}

.btn-primary {
  background-color: #007bff;
  border: none;
}

.btn-primary:hover {
  background-color: #0056b3;
  transform: scale(1.05);
}

.btn-secondary {
  background-color: #6c757d;
  border: none;
}

.btn-secondary:hover {
  background-color: #5a6268;
  transform: scale(1.05);
}

.btn-success {
  background-color: #28a745;
  border: none;
}

.btn-success:hover {
  background-color: #218838;
  transform: scale(1.05);
}

.btn-outline-primary {
  border-color: #007bff;
  color: #007bff;
}

.btn-outline-primary:hover {
  background-color: #007bff;
  color: #ffffff;
}

/* Responsive Design */
@media (max-width: 768px) {
  .header h1 {
    font-size: 2rem;
  }

  .header p {
    font-size: 1rem;
  }

  .project-card img, .popular-card img {
    height: 180px; /* Adjust for mobile for better visibility */
  }

  .overview-item {
    flex-direction: column; /* Stack items vertically on small screens */
  }

  .icon {
    font-size: 30px; /* Reduce icon size on mobile */
  }
  
  .btn {
    width: 100%; /* Make buttons full-width on mobile */
    margin-bottom: 10px; /* Add space between buttons */
  }
}



body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background-color: #f8f9fa;
}

.main-container {
  max-width: 1200px;
  margin: 20px auto;
  padding: 20px;
}

.property-card, .overview-container {
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  padding: 20px;
  margin-bottom: 20px;
  height: 500px;
}

.heading, .overview-header {
  color: #007bff;
  margin-bottom: 15px;
}

.location {
  font-size: 14px;
  color: #555;
  margin-bottom: 15px;
}

.carousel-item {
  text-align: center;
}

.around-item {
  margin: 10px 0;
}

.around-item strong {
  color: #007bff;
  display: block;
  margin-bottom: 5px;
}

.overview-label {
  font-weight: bold;
  color: #333;
}

.overview-value {
  color: #555;
}

.btn {
  border-radius: 5px;
  padding: 10px 15px;
  
}

.btn-outline-primary {
  color: #007bff;
  border-color: #007bff;
}

.btn-outline-primary:hover {
  background-color: #007bff;
  color: #fff;
}

.btn-outline-secondary {
  color: #6c757d;
  border-color: #6c757d;
}

.btn-outline-secondary:hover {
  background-color: #6c757d;
  color: #fff;
}

.btn-primary {
  background-color: #007bff;
  color: #fff;
}

.btn-primary:hover {
  background-color: #0056b3;
}

@media (max-width: 768px) {
  .main-container {
      padding: 10px;
  }

  .property-card, .overview-container {
      padding: 15px;
  }

  .heading, .overview-header {
      font-size: 1.5rem;
  }

  .btn {
      width: 100%;
      margin-bottom: 10px;
  }
}


body {
  background-color: #f8f9fa; /* Light background for contrast */
  font-family: 'Arial', sans-serif; /* Added font family for a modern look */
  margin: 0; /* Remove default margin */
}

.header {
  text-align: center;
  margin-bottom: 40px;
  color: #343a40; /* Darker color for the heading */
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1); /* Subtle shadow for depth */
  font-size: 2.5em; /* Increased font size for header */
  letter-spacing: 1px; /* Space between letters */
}

.amenities-icon {
  font-size: 36px; /* Increased icon size for better visibility */
  color: #007bff; /* Blue color for icons */
  margin-bottom: 10px; /* Spacing below icons */
  transition: transform 0.3s, color 0.3s, box-shadow 0.3s; /* Transition effects for icons */
  position: relative; /* For shine effect */
  border-radius: 10px; /* Rounded corners for icons */
  padding: 15px; /* Padding around icons */
  background: white; /* Background color for icons */
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); /* Light shadow for depth */
}

.amenities-icon:hover {
  transform: scale(1.1); /* Slight zoom on hover */
  color: #0056b3; /* Darker blue on hover */
  box-shadow: 0 8px 16px rgba(0, 123, 255, 0.4); /* Deeper shadow on hover */
}

.amenities-icon::after {
  content: ''; /* Create a shine effect */
  position: absolute;
  top: -20%;
  left: -20%;
  width: 140%;
  height: 140%;
  background: rgba(255, 255, 255, 0.3); /* Light white for shine */
  border-radius: 50%; /* Circular shine */
  opacity: 0; /* Invisible by default */
  transition: opacity 0.5s ease-in-out; /* Transition for shine effect */
}

.amenities-icon:hover::after {
  opacity: 1; /* Show shine on hover */
}

.project-amenities {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  margin-bottom: 40px; /* Space below amenities */
}

.project-specifications th,
.project-specifications td {
  padding: 12px; /* Increased padding for table cells */
}

.project-specifications th {
  background-color: #007bff; /* Blue background for table header */
  color: white; /* White text for contrast */
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* Slight shadow for depth */
  border-radius: 5px; /* Rounded corners for header */
}

.project-specifications tr:hover {
  background-color: rgba(0, 123, 255, 0.1); /* Light blue hover for rows */
}

.project-specifications td {
  border-radius: 5px; /* Rounded corners for cells */
}

.btn-custom {
  background-color: #007bff; /* Button color */
  color: white; /* Button text color */
  padding: 12px 25px; /* Padding for the button */
  border: none; /* Remove border */
  border-radius: 5px; /* Rounded corners */
  cursor: pointer; /* Pointer on hover */
  transition: background-color 0.3s, box-shadow 0.3s, transform 0.3s; /* Transition effects for button */
  box-shadow: 0 4px 8px rgba(0, 123, 255, 0.3); /* Shadow for button */
}

.btn-custom:hover {
  background-color: #0056b3; /* Darker blue on hover */
  box-shadow: 0 8px 16px rgba(0, 86, 179, 0.5); /* Deeper shadow on hover */
  transform: translateY(-2px); /* Lift effect on hover */
}

@media (max-width: 768px) {
  .amenities-icon {
    font-size: 28px; /* Smaller icon size on mobile */
    padding: 10px; /* Reduced padding for mobile */
  }

  .header {
    font-size: 2em; /* Smaller header font size for mobile */
  }
}

/* Enhanced Styling for the Real Estate  google Form Section */
.form-container {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  padding: 30px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.25);
  border-radius: 12px;
  background: linear-gradient(135deg, #ffffff, #007bff);
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.form-container::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(0,123,255,0.2), transparent 70%);
  z-index: 0;
  animation: pulse 6s infinite;
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
}

.form-container .btn-custom {
  padding: 15px 30px;
  font-size: 1.5rem;
  font-weight: bold;
  border: none;
  border-radius: 50px;
  background: linear-gradient(90deg, #0056b3, #00bfff);
  color: #fff;
  text-decoration: none;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  position: relative;
  z-index: 1;
  animation: blink 2s infinite;
}

@keyframes blink {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.7;
  }
}

.form-container .btn-custom:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
}

.form-container h2 {
  color: #fff;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  position: relative;
  z-index: 1;
}

/* Responsive Design */
@media (max-width: 768px) {
  h2 {
    font-size: 1.8rem;
  }

  .form-container {
    padding: 20px;
  }

  .form-container .btn-custom {
    font-size: 1.2rem;
    padding: 12px 25px;
  }
}

@media (max-width: 576px) {
  h2 {
    font-size: 1.4rem;
  }

  .form-container {
    padding: 15px;
  }

  .form-container .btn-custom {
    font-size: 1rem;
    padding: 10px 20px;
  }
}

/* from close google */



@keyframes scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(calc(-250px * 7)); }
}

.slider {
  height: 100px;
  margin: auto;
  overflow: hidden;
  position: relative;
  width: 100%;
}

.slider .slide-track {
  display: flex;
  width: calc(250px * 14); /* 7 images + 7 duplicates for smooth scrolling */
  animation: scroll 40s linear infinite; /* Adjust animation speed here */
}

.slider .slide {
  width: 250px;
  height: 100px;
  flex-shrink: 0;
  margin-right: 10px; /* Optional: Add spacing between slides */
}

.slider .slide img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Ensure the images are properly scaled */
  border-radius: 10px; /* Optional: Add rounded corners */
}



/* footer start */
/* Make footer full-width and add a shine effect */
.container-fluid.p-0 {
  width: 100%;
  padding: 0;
}

footer {
  position: relative;
}

footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: -150%;
  width: 200%;
  height: 100%;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.4), transparent);
  transition: all 1.5s ease;
  opacity: 0;
}

footer:hover::before {
  left: 150%;
  opacity: 1;
}

/* Footer content styling */
footer h6 {
  font-size: 16px;
  font-weight: bold;
}

footer p, footer a {
  font-size: 14px;
  color: #333;
}

footer a:hover {
  color: #7c4dff;
  text-decoration: none;
}

footer .fab {
  font-size: 20px;
  animation: blink 1.5s infinite; /* Blink animation for social icons */
}

footer .fab:hover {
  color: #7c4dff;
}

/* Blink animation */
@keyframes blink {
  0%, 100% {
      opacity: 1;
  }
  50% {
      opacity: 0.5; /* Make icons semi-transparent */
  }
}

footer .btn {
  animation: blink-button 1.5s infinite; /* Blink animation for subscribe button */
}

footer .btn:hover {
  color: #7c4dff; /* Change color on hover */
}

/* Blink button animation */
@keyframes blink-button {
  0%, 100% {
      background-color: #007bff; /* Original background color */
      color: white; /* Original text color */
  }
  50% {
      background-color: #0056b3; /* Change background color on blink */
      color: #e0e0e0; /* Change text color on blink */
  }
}

/* Adjust padding for footer sections */
footer .container {
  max-width: 100%;
  padding: 30px;
}

.blog-post {
  margin-bottom: 20px; /* Space between blog posts */
}

.blog-post img {
  max-width: 100%; /* Responsive blog image */
  height: auto; /* Maintain aspect ratio */
}

.blog-post p {
  margin: 5px 0; /* Space between title and date */
}

.footer-logo {
  max-width: 150px; /* Adjust logo size */
}

.blog-post {
  margin-bottom: 20px; /* Space between blog posts */
}

.blog-post img {
  max-width: 100%; /* Responsive blog image */
  height: auto; /* Maintain aspect ratio */
}

.blog-post p {
  margin: 5px 0; /* Space between title and date */
}
/* footer end */





.popular-card {
  position: relative;
  overflow: hidden;
}
.sold-out-overlay {
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0, 128, 0, 0.8);
  color: white;
  padding: 5px 10px;
  font-size: 14px;
  font-weight: bold;
  border-radius: 3px;
  text-transform: uppercase;
}







    .config-section {
      padding: 80px 20px;
      background-color: rgba(0, 0, 0, 0.5);
    }

    .config-box {
      border: 5px solid white;
      padding: 30px;
      margin: 15px 0;
      text-align: center;
      background-color: rgba(255, 255, 255, 0.1);
      border-radius: 10px;
      transition: transform 0.3s, border-color 0.3s;
    }

    .config-box:hover {
      transform: scale(1.05);
      border-color: gold;
    }

    .config-box.active {
      border-color: goldenrod;
      background-color: rgba(255, 255, 255, 0.15);
    }

    .config-box h4 {
      font-weight: bold;
      margin-bottom: 10px;
    }

    .config-box p {
      font-size: 20px;
      margin: 10px 0;
    }

    .check-btn {
      background-color: #2e2a6f;
      color: white;
      font-weight: bold;
      border-radius: 30px;
      padding: 10px 30px;
      border: none;
      margin-top: 15px;
    }

    .check-btn:hover {
      background-color: #1c1a45;
    }

    .section-title {
      text-align: center;
      font-size: 32px;
      font-weight: bold;
      margin-bottom: 50px;
    }

    .modal-content {
      background: linear-gradient(to bottom right, #ffffff, #f3f3f3);
      color: black;
      border-radius: 15px;
    }

    .modal-header {
      border-bottom: none;
    }

    .modal-footer {
      border-top: none;
    }




    .highlight-section {
      padding: 50px 15px;
      text-align: center;
    }

    .highlight-section h2 {
      font-size: 32px;
      font-weight: 600;
      color: #a1824c;
      margin-bottom: 20px;
    }

    .highlight-section p {
      color: #4a4a4a;
      max-width: 900px;
      margin: 0 auto 40px;
      font-size: 16px;
      padding: 0 10px;
    }

    .highlight-box {
      background-color: #a1824c;
      color: #fff;
      padding: 25px 20px;
      margin-bottom: 30px;
      border-radius: 6px;
      font-weight: 600;
      position: relative;
      font-size: 15px;
    }

    .highlight-box::after {
      content: "";
      position: absolute;
      bottom: -20px;
      left: 50%;
      transform: translateX(-50%);
      width: 0;
      height: 0;
      border-left: 15px solid transparent;
      border-right: 15px solid transparent;
      border-top: 20px solid #a1824c;
    }

    @media (min-width: 768px) {
      .highlight-box {
        height: 150px;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        font-size: 16px;
      }
    }

    .highlight-section a {
      color: #a1824c;
      font-weight: bold;
      text-decoration: none;
    }

    .highlight-section a:hover {
      text-decoration: underline;
    }



    .location-advantage {
  background: linear-gradient(135deg, #0f2027, #203a43, #2c5364);
  color: #fff;
}

.advantage-heading {
  font-size: 2.8rem;
  font-weight: 800;
  position: relative;
  display: inline-block;
  color: #ffc107;
}

.advantage-heading::after {
  content: '';
  display: block;
  width: 60%;
  height: 4px;
  margin: 10px auto 0;
  background-color: #ffc107;
  border-radius: 10px;
}

.feature-box {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 30px;
  transition: all 0.3s ease-in-out;
  box-shadow: 0 0 10px rgba(255,255,255,0.05);
  height: 100%;
}

.feature-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 30px rgba(255, 255, 255, 0.2);
}

.feature-list {
  list-style: none;
  padding-left: 0;
  font-size: 16px;
}

.feature-list li {
  margin-bottom: 12px;
  line-height: 1.6;
}

@media screen and (max-width: 767px) {
  .advantage-heading {
    font-size: 2rem;
  }

  .feature-box {
    padding: 20px;
  }

  .feature-list {
    font-size: 15px;
  }
}